home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / ping_asp.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  79 lines

  1. #
  2. # This script was written by Michel Arboi <arboi@alussinan.org>
  3. #
  4. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  5. #      Erik Anderson <eanders@carmichaelsecurity.com>
  6. #      Added CAN.  Added link to the Bugtraq message archive
  7. #
  8. # See the Nessus Scripts License for details
  9. #
  10.  
  11. if(description)
  12. {
  13.  script_id(10968);
  14.  script_version ("$Revision: 1.8 $");
  15.  
  16.  name["english"] = "ping.asp";
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "The 'ping.asp' CGI is installed. Some versions
  20. allows a cracker to launch a ping flood against your 
  21. machine or another by entering
  22. '127.0.0.1 -l 65000 -t' in the Address field.
  23.  
  24. Solution : remove it.
  25.  
  26. Reference : http://online.securityfocus.com/archive/82/275088
  27.  
  28. Risk factor : High";
  29.  
  30.  desc["francais"] = "Le CGI 'ping.asp' est installΘ. Certaines 
  31. versions permettent α un pirate de lancer un dΘni de service (ping flood)
  32. contre votre machine ou une autre en entrant 
  33. '127.0.0.1 -l 65000 -t'
  34. dans le camp Adresse.
  35.  
  36. Solution : supprimez le.
  37.  
  38. Risk factor : High";
  39.  
  40.  
  41.  script_description(english:desc["english"], francais:desc["francais"]);
  42.  
  43.  summary["english"] = "Checks for the presence of ping.asp";
  44.  summary["francais"] = "VΘrifie la prΘsence de ping.asp";
  45.  script_summary(english:summary["english"], francais:summary["francais"]);
  46.  
  47.  script_category(ACT_GATHER_INFO);
  48.  
  49.  
  50.  script_copyright(english:"This script is Copyright (C) 2002 Michel Arboi");
  51.  family["english"] = "CGI abuses";
  52.  family["francais"] = "Abus de CGI";
  53.  script_family(english:family["english"], francais:family["francais"]);
  54.  script_dependencie("find_service.nes", "no404.nasl");
  55.  script_require_ports("Services/www", 80);
  56.  exit(0);
  57. }
  58.  
  59. #
  60. # The script code starts here
  61. #
  62. include("http_func.inc");
  63. include("http_keepalive.inc");
  64. port = get_http_port(default:80);
  65. if ( ! can_host_asp(port:port) ) exit(0);
  66.  
  67.  
  68. if (is_cgi_installed_ka(port:port, item:"ping.asp"))
  69. {
  70.  security_hole(port);
  71.  exit(0);
  72. }
  73.  
  74. if (is_cgi_installed_ka(port:port, item:"/ping.asp"))
  75. {
  76.  security_hole(port);
  77.  exit(0);
  78. }
  79.